home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / help / source < prev    next >
Encoding:
Text File  |  1993-10-08  |  898 b   |  17 lines

  1.        source Same as ., except that  the  current  directory  is
  2.               always  searched  and  is  always  searched  first,
  3.               before directories in path.
  4.  
  5.        . file [ arg ... ]
  6.               Read commands from file and  execute  them  in  the
  7.               current  shell  environment.  If file does not con-
  8.               tain a slash, or if PATH_DIRS  is  set,  the  shell
  9.               looks  in the components of path to find the direc-
  10.               tory containing file.  Files in the current  direc-
  11.               tory  are  not read unless "." appears somewhere in
  12.               path.  If any arguments arg are given, they  become
  13.               the   positional  parameters;  the  old  positional
  14.               parameters are restored when the file is done  exe-
  15.               cuting.   The exit status is the exit status of the
  16.               last command executed.
  17.